summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/asn/omv2/SequenceOfViaStationType.java
blob: ea21e35709893761e31501b7e3a6f7a263f1c651 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package org.uic.ticket.api.asn.omv2;

import java.util.Collection;

import net.gcdc.asn1.datatypes.Asn1SequenceOf;

public class SequenceOfViaStationType extends Asn1SequenceOf<ViaStationType> {
    public SequenceOfViaStationType() { super(); }
    public SequenceOfViaStationType(Collection<ViaStationType> coll) { super(coll); }
}